home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / FredFish PD 319.adf / CNewsSrc / cnews.src.lzh / libcnews / strlower.c < prev    next >
C/C++ Source or Header  |  1989-07-03  |  175b  |  14 lines

  1. /*
  2.  * make a string all lower-case.
  3.  */
  4.  
  5. #include <ctype.h>
  6.  
  7. strlower(s)
  8. register char *s;
  9. {
  10.     for (; *s != '\0'; ++s)
  11.         if (isascii(*s) && isupper(*s))
  12.             *s = tolower(*s);
  13. }
  14.